home *** CD-ROM | disk | FTP | other *** search
/ PC Team 23 / HS_Tuning.iso / Optimisation / JV16 Powertools 1.6 / Setup.exe / {app} / Documentation / Example Scripts / 1. The very basics / Loops.jvb < prev    next >
Encoding:
Text File  |  2003-04-21  |  108 b   |  11 lines

  1. Console;
  2.  
  3. For (i := 1 to 5, +1)
  4. [
  5.  PrintMessage $i;
  6. ]
  7.  
  8. For (i := 5 to 1, -1)
  9. [
  10.  PrintMessage $i;
  11. ]